home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue3 / Games / xrick / !xrick / src / c / dat_snd < prev    next >
Text File  |  2004-06-24  |  759b  |  35 lines

  1. /*
  2.  * xrick/data/dat_snd.c
  3.  *
  4.  * Copyright (C) 1998-2002 BigOrno (bigorno@bigorno.net). All rights reserved.
  5.  *
  6.  * The use and distribution terms for this software are contained in the file
  7.  * named README, which can be found in the root of this distribution. By
  8.  * using this software in any fashion, you are agreeing to be bound by the
  9.  * terms of this license.
  10.  *
  11.  * You must not remove this notice, or any other, from this software.
  12.  */
  13.  
  14. #include "config.h"
  15.  
  16. #ifdef ENABLE_SOUND
  17.  
  18. #include "system.h"
  19.  
  20. sound_t *WAV_WAA;
  21. sound_t *WAV_BOMB;
  22. sound_t *WAV_BULLET;
  23. sound_t *WAV_WALK;
  24. sound_t *WAV_JUMP;
  25. sound_t *WAV_TING;
  26. sound_t *WAV_BOMBSHHT;
  27. sound_t *WAV_BONUS;
  28. sound_t *WAV_SHHT;
  29. sound_t *WAV_BOX;
  30. sound_t *WAV_DDDING;
  31.  
  32. #endif /* ENABLE_SOUND */
  33.  
  34. /* eof */
  35.